home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / MosaicSRC / libwww2 / HTFWriter.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  597 b   |  23 lines

  1. /*
  2.                                       C FILE WRITER
  3.                                              
  4.    It is useful to have both FWriter and Writer for environments in
  5.    which fdopen() doesn't exist for example.
  6.    
  7.  */
  8. #ifndef HTFWRITE_H
  9. #define HTFWRITE_H
  10.  
  11. #include "HTStream.h"
  12. #include <stdio.h>
  13. #include "HTFormat.h"
  14.  
  15. extern HTStream * HTSaveAndExecute PARAMS((
  16.         HTPresentation *        pres,
  17.         HTParentAnchor *        anchor, /* Not used */
  18.         HTStream *              sink,
  19.         HTFormat                format_in,
  20.         int                     compressed));
  21.  
  22. #endif
  23.